home *** CD-ROM | disk | FTP | other *** search
/ El Mac 1 / Magazine.iso / EL MAC 1 / Infotenimiento / Rednex / SHARED.DIR / 00827.ls < prev    next >
Encoding:
Text File  |  1995-08-23  |  635 b   |  37 lines

  1. on pickadoll
  2.   cursor([756])
  3. end
  4.  
  5. on wait t
  6.   startTimer()
  7.   set delay to the timer
  8.   repeat while delay < t
  9.     set delay to the timer
  10.   end repeat
  11. end
  12.  
  13. on testljud
  14.   global Vljud
  15.   repeat with channelNumber = 1 to 48
  16.     if the castNum of sprite channelNumber = 52 then
  17.       set the volume of sound 1 to 130
  18.       next repeat
  19.     end if
  20.     set the volume of sound 1 to 255
  21.   end repeat
  22. end
  23.  
  24. on KastaCast FromCast, ToCAst
  25.   repeat with x = FromCast to ToCAst
  26.     unLoadCast(x)
  27.   end repeat
  28. end
  29.  
  30. on LaddaCast FromCast, ToCAst
  31.   cursor([821, 822])
  32.   repeat with x = FromCast to ToCAst
  33.     preLoadCast(x)
  34.   end repeat
  35.   cursor(-1)
  36. end
  37.